Syntax:
set clip points set noclip pointsGNUPLOT can also clip lines that connect a point that is in range with a point that is out of range. The default is to draw the in-range portion of such lines (i.e., to ``clip'' them). With the following syntax, the default is set clip one. The alternative (set noclip one) is to not draw any portion of the line segment. In no case is a line drawn outside the plotting area.
Syntax:
set clip one set noclip oneGNUPLOT does not show lines that are wholly out of range. Some lines may have both endpoints out of range, but pass through the plotting area. By default, GNUPLOT does not draw these lines (set noclip two). They may be drawn (and clipped) with set clip two. Syntax:
set clip two set noclip twoTo check the state of all forms of clipping, use
show clipThe following forms are also permitted. These allow backward compatibility with older versions.
set clip set noclipset clip is synonymous with set clip points. set noclip turns off all three types of clipping (points, one, and two).